home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / mawk10.zip / SYSV.H < prev    next >
C/C++ Source or Header  |  1991-10-05  |  980b  |  48 lines

  1.  
  2. /********************************************
  3. sysV.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the AWK programming language.
  8.  
  9. Mawk is distributed without warranty under the terms of
  10. the GNU General Public License, version 2, 1991.
  11. ********************************************/
  12.  
  13.  
  14. /* 
  15.    This is for sysVR3+
  16.    without IEEE754 floating point
  17.  
  18.    Even with IEEE754 hardware e.g. a 80x87 or 486
  19.    you might need this, because the math library doesn't
  20.    support the hardware.
  21.  
  22.    tested on SCO UNIX VR3.2v2.0
  23.  
  24. */
  25.  
  26. /*$Log:    sysV.h,v $
  27.  * Revision 4.1  91/09/25  11:41:40  brennan
  28.  * VERSION 1.0
  29.  * 
  30.  * Revision 1.2  91/08/13  09:04:15  brennan
  31.  * VERSION .9994
  32.  * 
  33.  * Revision 1.1  91/08/03  05:49:52  brennan
  34.  * Initial revision
  35.  * 
  36. */
  37.  
  38. #ifndef    CONFIG_H
  39. #define    CONFIG_H        1
  40.  
  41. #define        FPE_TRAPS_ON        1
  42. #define        NOINFO_SIGFPE        1
  43.  
  44.  
  45. #include  "config/Idefault.h"
  46.  
  47. #endif   /* CONFIG_H */
  48.